No Right Clicking
Powered by Homestead.
Here's a script that will prevent people from stealing your images when they right-click and attempt to perform a 'Save As...'  Go ahead, try and right-click the image at the top-right!
</div>
<script language=JavaScript>

var message="Your message goes here.";
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
</script>
<div>
To get the 'No Right Click' code:

1. Highlight the enitre code in the box with your mouse, then copy it by pressing 'Control' and 'C' at the same time.
2. Open your page in SiteBuilder and select the HTML Snippet Element.  It should appear on your page.
3. Click the 'Edit' button.  The Element Editor window should appear.
4. Click the 'Edit HTML' button.
5. Paste this code within the HTML window by pressing Control-V.
6. Edit this code according to the explanations below (The COLORS explained).
The COLORS explained:

Your message goes here.  This is where you place the text that you'd like to have appear when someone right-clicks anywhere on your page.  Substitute your text if you wish.